Content & Deliverables

Project 1 - Capstone Deliverables

This is a sample page where you can archive project deliverables. Every header you use will correspond to a tab in the legend - shown on the right-hand side of your screen (“On this page”).

If you’ve produced any GIS layers for your 599 project, this may be a good place to share them as interactive maps through leaflet. Alternatively, you can upload high-res figures showing correlations, box-plots, etc. from your report here, and provide a brief overview of key project results. If you have written some useful functions, you may also want to share those here to demonstrate proficiency in particular coding languages or synergies between notable coding packages.

Leaflet

Sample leaflet - for detailed leaflet instructions, visit the FCOR 599 workshop archive page here.

setwd(“C:/Users/eron.stu/OneDrive - UBC/GEM521_Advanced_Earth_Observation_Image_Processing/GEM521_Labs/Lab5/Dalponte”)

work_dir = “C:/Users/eron.stu/OneDrive - UBC/GEM521_Advanced_Earth_Observation_Image_Processing/GEM521_Labs/Lab5/Dalponte”

Code Snippets

Sample code snippet. Notice that you can provide a toggle to switch between coding languages - this is referred to as a ‘tabset’ in quarto. It is good practice to try and convert your R code to python, and vice-versa to demonstrate coding proficiency. For example, let’s showcase a function for calculating NDVI in R and Python.

calc_ndvi <- function(nir, red){ ndvi <- (nir-red)/(nir+red) return(ndvi) }
def calc_ndvi(nir, red): 
  ndvi = (nir.astype(float)-red.astype(float))/(nir.astype(float)+red.astype(float))
  return(ndvi)